home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0031.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  1.9 KB  |  45 lines

  1. > 1)
  2. >   I have been having problems with Deek, Doke, Peek and Poke. Everything works
  3. > fine until I start trying to read back negative numbers which I have previously
  4. > Poked or Doked into a Data Bank. I expect this is something to do with sign
  5. > extension, so is there a FAST solution to this? Doing a manual bit-test and
  6. > sign extension is pitifully slow.
  7. >  
  8. > I'm afraid that I can't confirm the results, (my Amiga died horribly and the
  9. > Bar-Steward Mail Order company haven't bothered to send me my new A4000 yet).
  10.  
  11. I'm afraid you'll have to do it manually - you can't poke or doke 
  12. negative numbers.
  13.  
  14. > 2)
  15. >   Also, does anyone know of an extension or whatever which allows one to
  16. > perform a word or long-word search of memory. ie. Search for the first
  17. > occurance of a specified word-value between two addresses. I can do a byte
  18. > search by using the "hunt" command (if I remember rightly) but I am in
  19. > DESPERATE need of a word and long word version.
  20.  
  21. You could convert your word or longword into a string, and then use the 
  22. hunt command.  For example, to find 452, you'd convert it into two bytes 
  23. (1 and 196 - the way I do it is by doking the word, and then peeking each 
  24. byte), then make a string with those two characters, and do a hunt :
  25.  
  26. Hunt (Start TO Finish, S$)
  27.  
  28. > 3)
  29. >   How can I make AmosPro run faster for "simple" screen update situations. I
  30. > currently turn everything off - AutoBack, Double Buffer, Auto View, Flash,
  31. > Cursor. Is there anything else to turn off or tweak to improve performance that
  32. > little bit ?
  33.  
  34. Turning flash off makes no difference in speed, although the flashing IS 
  35. very annoying. :)  Apart from that, there's not a lot you can do to speed 
  36. up screen updates, short of installing Turbo.
  37.  
  38. --
  39. GCS -d+ H+ s++:- g+ p? !au a- w+++            !Productions 1995
  40. v* C+++ UB+++A++++ P++ L++ E+ N+++       http://satelnet.org/~mentat/
  41. K+ !W--- M-- V po- Y+ t++ 5+ jx G?
  42. R tv++ D- B--- e+ u** h f r++ !n y+ "No matter where you go, there you are."
  43.  
  44.  
  45.